home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu702.dms / pu702.adf / Install-MSDOS < prev    next >
Text File  |  1992-09-02  |  2KB  |  113 lines

  1. ;MS-DOS® For AmigaDOS®,   Copyright ©1994  Dave Lomax
  2. ;This Installer for $VER 2.3 (29.10.94)
  3.  
  4. (complete 0)
  5.  
  6. (set @DESTINATION
  7.     (askdir
  8.         (prompt "Where would you like MSDOS® For AmigaDOS® Installed?")
  9.               (help @askdir-help)
  10.               (default "HD0:WBSTARTUP")
  11.     )
  12. )
  13.  
  14. (set @DEST ("%s%s" @DESTINATION "/MSDOS"))
  15.  
  16. (complete 5)
  17.  
  18. (makedir @DEST
  19.     (prompt "\n\n\n\nCreating directory MSDOS")
  20.     (help "\n\n\nI'm making a directory to bung all\n\n"
  21.           "of the MS-DOS® commands in.  If you move it,\n\n"
  22.           "you MUST change the User-Startup accordingly")
  23.     (infos)
  24.     (confirm)
  25. )
  26.  
  27. (complete 10)
  28.  
  29. (copyfiles
  30.     (prompt "\n\n\n\n"
  31.                 "Installing MS-DOS® Commands...\n\n"
  32.                 "This will copy across all the MS-DOS commands\n")
  33.     (help @copyfiles-help)
  34.     (source "DOS6")
  35.     (dest @DEST)
  36.     (all)
  37.     (infos)
  38. )
  39.  
  40. (complete 60)
  41.  
  42. (set @DESTHELP
  43.         (askdir
  44.                 (prompt "Where would you like the Help-Guide Installed?")
  45.                 (help @askdir-help)
  46.                 (default "HELP:")
  47.         )
  48. )
  49.  
  50. (copyfiles
  51.     (prompt "Copying MSDOS.Guide\n")
  52.     (help "This will copy the MSDOS.Guide file to\n"
  53.           "where you have just selected\n")
  54.     (source "MSDOS.Guide")
  55.     (dest @DESTHELP)
  56.     (infos)
  57.     (confirm)
  58. )
  59.  
  60. (complete 65)
  61.  
  62. (copyfiles
  63.         (prompt "Copying Guide viewer\n")
  64.         (help "This will copy PPGuide, to view the Guide\n")
  65.         (source "PPGuide")
  66.         (dest @DESTHELP)
  67.     (confirm)
  68. )
  69.  
  70. (complete 70)
  71.  
  72. (copylib
  73.     (prompt "\n\n\n\nInstalling Help.Library")
  74.     (help @copylib-help)
  75.     (source "LIBS/HELP.Library")
  76.     (dest "LIBS:")
  77.     (confirm)
  78. )
  79.  
  80. (complete 80)
  81.  
  82. (startup "[MSDOS® For AmigaDOS®     ©1994 Dave Lomax]"
  83.     (prompt "\n\n\n\nAdding a line to\n\nS:User-Startup")
  84.     (help "This will add a line to your\n\n"
  85.           "S:User-Startup file\n\n"
  86.           "which makes an ASSIGN to its path.\n")
  87.     (command (cat "Assign Dos6: " @DEST))
  88.     (command "\nPath Dos6: ADD\n")
  89. )
  90.  
  91. (complete 85)
  92.  
  93. (execute "Add_To_Shell_Startup"
  94.     (help "This will ADD a line\n\n"
  95.           "to your Shell-Startup\n\n"
  96.           "activating MSDOS®")
  97.     (prompt "\n\n\n\nAdding a line to your\n\n"
  98.         "S:Shell-Startup")
  99.     (confirm)
  100. )
  101.  
  102. (complete 90)
  103.  
  104. (working)
  105.  
  106. (complete 100)
  107.  
  108. (message "\n\n\n\nInstallation complete\n\n"
  109.          "You MUST Re-boot to make it\n"
  110.          "effective")
  111.  
  112. (exit)
  113.